* {
    box-sizing: border-box;
    color: #b2b2b2;
}

a:hover {
    outline: none;
}

a,
b,
body,
dd,
del,
div,
dl,
dt,
em,
form,
h1,
h2,
h3,
h4,
h5,
h6,
html,
i,
iframe,
img,
ins,
label,
legend,
li,
ol,
p,
pre,
small,
span,
strong,
u,
ul,
var,
input {
    margin: 0;
    padding: 0;

}

ul,
li,
ol {
    list-style: none;
}

/* 去掉图片下面的留白问题 */
img {
    /* display: block; */
    vertical-align: middle;
}

input,
button {
    border: 0;
    border: 1px solid #ccc;
    outline: none;
}

a {
    color: #333;
    text-decoration: none;
}

a:hover {
    color: #333;
    text-decoration: none !important;
}


.mt_150 {
    margin-top: 150px;
}

/* 清除浮动的公共类 */
.clearfix:after {
    content: '';
    display: block;
    clear: both;
    height: 0;
    visibility: hidden;
}

/* 版心公共类 */
.w1200 {
    width: 1200px;
    margin: 0 auto;
}

.fl {
    float: left;
}

.fr {
    float: right;
}

/* 单行文本溢出以省略号的形式显示 */
.txt-cut {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

/* 主色调公共类 */
.main-color {
    color: #b1191a;
}

.main-bgcolor {
    background-color: #b1191a;
}

/* 初始化字体大小 */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    font: inherit;
    font-family: 'SourceHanSansSC-Normal';
    /* font-size: 14px */
}

/* body { */
/* font: inherit; */
/* font: 12px/1.5 'SourceHanSansSC-Normal'; */
/* color: #fff; */
/* } */

/* 边距公共类 */
.ml-5 {
    margin-left: 5px;
}

.mr-5 {
    margin-right: 5px;
}

.iconfont {
    vertical-align: middle;
    position: relative;
}

/* 固定导航头部 */
.headerBox.affix {
    position: fixed;
    top: 0px;
    left: 0px;
    z-index: 999999;
    background: #110D53;
    width: 100%;
}

/*  */

/* 表格样式 */
.fixed-table-container thead th .th-inner {
    color: #b2b2b2;
}

table thead th {
    border-left: 1px solid rgba(64, 64, 119, 0.5) !important;
}

table>thead>tr>th {
    border-bottom: 1px solid rgba(64, 64, 119, 0.5) !important;
}

table>tbody>tr {
    border-bottom-color: rgba(64, 64, 119, 0.5) !important;
    border-right-color: rgba(64, 64, 119, 0.5) !important;
    border-left-color: rgba(64, 64, 119, 0.5) !important;
    border-top-color: rgba(64, 64, 119, 0.5) !important;
}

.bootstrap-table .table {

    border-bottom: none !important;

}

.table>thead>tr {
    background: #1c2d75;
    /* height: 60px; */
}
.fixed-table-body{
    overflow-x: hidden !important;
  }


/* .bootstrap-table .table thead>tr>th:first-child(1){
    border-top: 3px solid #337ab7 !important;
} */
.table>thead:first-child>tr:first-child>th{
    border-top: 3px solid #337ab7 !important;
}

table>tbody>tr {
    background-color: rgba(24, 33, 88, 0.5);
}

.table-hover>tbody>tr:hover {
    background-color: rgba(24, 33, 88, 0.5) !important;
}

.table>tbody>tr>td,
.table>tbody>tr>th,
.table>tfoot>tr>td,
.table>tfoot>tr>th {
    border-top: 1px solid rgba(64, 64, 119, 0.5) !important;
    color: #999999;
}

.fixed-table-container tbody td {
    border-left: 1px solid rgba(64, 64, 119, 0.5) !important;
    border-right:1px solid rgba(64, 64, 119, 0.5) !important; 
    border-bottom:1px solid rgba(64, 64, 119, 0.5) !important; 
}

table thead th:first-child {
    /* border-left: 1px solid rgba(64, 64, 119, 0.5) !important; */
}

.fixed-table-container tbody td:first-child {
    /* border-left: none !important; */
}

.fixed-table-container {

      border-right: 1px solid rgba(64, 64, 119, 0.5) !important;
      border-top: none !important;
      border-bottom: none !important;
      border-left: none !important;
}

/* 消息提示框公共类 */
.dialog-mask {
    position: fixed;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000000;
    opacity: 0.2;
}

.dialog-container {
    position: fixed;
    background-color: #fff;
    border-radius: 5px 5px 5px 5px;
}

.dialog-container .dialog-header {
    cursor: move !important;
    position: relative;
    width: 100%;
    height: 50px;
    line-height: 50px;
    border: 0;
    background-color: #20222A;
    color: #fff;
    padding: 0 80px 0 20px;
    font-size: 14px;
    overflow: hidden;
    border-radius: 2px 2px 0 0;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.dialog-container .dialog-close {
    position: absolute;
    padding: 5px;
    right: 10px;
    top: 12px;
    color: #fff;
    cursor: pointer;
}

.dialog-container .dialog-close:HOVER {
    cursor: pointer;
    opacity: 1;
}

.dialog-container .dialog-content {
    padding: 20px;
    position: relative;
    overflow: auto;
    text-align: center;
}

.message-content {
    /* background-color: #00c0ef; */
    /* background-color:#ECF0F5; */
    background-color: #fff;
    position: relative;
    padding: 50px 15px;
    color: #fff;

    color: #000;
    text-align: center;
}

.message-content p {
    font-size: 20px;
    margin: 10px 0 10px;

}

.message-button-container {
    background-color: #fff;
    /* background-color:#ECF0F5; */
    padding: 15px;
    text-align: right;
    text-align: center;
}

.confirm-header {
    background-color: #00a7d0;
    background-color: #FBD204;
    background-color: #2C323A;
    padding: 15px;
    color: #fff;
}


.reload {
    background-color: #1c2d75;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9;
}
.reload .link{
    cursor: pointer;
    color: #fff;
}

.daterangepicker select.yearselect{
    width: 50% !important;
}


  .SerachHover{
    color: #f5f5f5 !important;
    background: rgb(71, 71, 204) !important;
  }

  .btn-default {
	background: transparent !important;
	color: #acb5e5 !important;

	border: 1px solid #5b67ae !important;
}

.pagination>li>a{
	background: rgb(20, 29, 95,0.5) !important;
	color: #acb5e5 !important;

	border: 1px solid #5b67ae !important;
}
.pagination>.active a, .pagination>.active>a:focus, .pagination>.active>a:hover, .pagination>.active>span, .pagination>.active>span:focus, .pagination>.active>span:hover {
	background: rgba(91, 103, 174, .4) !important;
}


/*
统一样式
*/


/*Echarts单位样式*/
._Echart_Unit{
    font-size: 14px;
    color: #858587;
}

/*
券商左边副标题
*/
._title_Font_Qs{
    color: #b2b2b2!important ;
    font-size: 15px !important;
}

/*
券商右边选中
*/
._title_Date_Qs{
    color: #858587 ;
    font-size: 14px !important;
}

._Webkit_box{
    word-break: break-all;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-right: 14px;
    color: white;
}
._Webkit_box_Fork{
    position: absolute; top:8px;right:9px
}
